home *** CD-ROM | disk | FTP | other *** search
- /* WindowAids.h */
-
- #ifndef __WA__
- #define __WA__
-
- extern short textJust; /* set by SetWFont */
-
- /*----------*/
- void WindowAidsSeg (void);
- void GetWRect (short itemNr,
- Rect *itemRect);
- void SetWFont (short itemNr);
- WindowPtr GetWindow (short windowID);
- ListHandle NewV1List (Rect bounds,
- WindowPtr parentWindow);
- ListHandle NewV1SList (Rect bounds,
- WindowPtr parentWindow);
- Boolean GetListChoice (short *choice,
- ListHandle list);
- void SetListChoice (short choice,
- ListHandle list);
- void GetListRow (Str255 data,
- short index,
- ListHandle list);
- void SetListRow (Str255 data,
- short index,
- ListHandle list);
- void AddToList (Str255 data,
- ListHandle list);
- void DrawList (ListHandle list);
- void TextIDBox (short textID,
- Rect bounds);
- //void PlotIconID (short iconID,
- // Rect bounds);
- void DrawPictureID (short pictID,
- Rect bounds);
- void DrawGrayLine (Rect bounds);
- void UpdatePopup (Rect bounds,
- short menuID,
- short choice);
- void TrackPopup (Rect bounds,
- short menuID,
- short *choice);
- Boolean TrackButton (ControlHandle button,
- Point mousePos);
- void TrackCheck (ControlHandle checkBox,
- Point mousePos,
- Boolean *checked);
- void TrackRadio (ControlHandle radio,
- Point mousePos,
- short *choice);
- void TrackMulti (ControlHandle multi,
- Point mousePos,
- short *value);
- void TrackPalette (ControlHandle palette,
- Point mousePos,
- short *choice);
- void EnableControl (ControlHandle theControl,
- Boolean active);
- void HiliteScroll (ControlHandle scroll,
- Boolean active);
-
- #endif /* __WA__ */